Northern Region Eclair Orders and Results FHIR API
GET Practitioner
Practitioner Resource Implementation
Reference: http://hl7.org/fhir/R4/patient.html
Element / Node Names | Description |
---|---|
address | An address for the healthcare practitioner |
identifier | Healthcare practitioner CPN |
name | The name associated with the healthcare practitioner |
resourceType | Represents the FHIR domain resource type |
Query Parameters
The following parameters are supported for performing queries on FHIR Patient resource. See http://hl7.org/fhir/R4/searchparameter-registry.html for further information.
Data | Parameter | Example |
---|---|---|
identifier | practitioner.identifier |
Sample payload
{
"resourceType": "Practitioner",
"id": "35eea1fb-7f8f-4de5-8e5a-17a813498a95",
"identifier": [
{
"use": "official",
"type": {
"coding": [
{
"system": "https://standards.digital.health.nz/ns/hpi-person-id",
"code": "Health Provider Index (HPI)"
}
],
"text": "Health Provider Index (HPI)"
},
"system": "https://standards.digital.health.nz/ns/hpi-personid",
"value": "96ZZZZ"
}
],
"name": [
{
"use": "official",
"text": "SYSMEX ANDREW",
"family": "Sysmex",
"given": [
"Andrew"
]
}
],
"address": [
{
"use": "home",
"type": "both",
"line": [
"23 SYSMEX WAY"
],
"city": "Auckland",
"country": "NZ"
}
]
}